Skip to content

Commit 2a05a86

Browse files
committed
style: reformat source code
1 parent 3aebb1e commit 2a05a86

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

src/file_system.ts

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,15 @@ import { memoize } from './utils.ts'
1717
import { type InspectedFile, type AssemblerRcFile } from './types/common.ts'
1818

1919
const DEFAULT_INCLUDES = ['**/*']
20-
const ALWAYS_EXCLUDE = ['.git/**', 'coverage/**', '.github/**', '.adonisjs/**', 'tmp/**', 'storage/**', 'build/**']
20+
const ALWAYS_EXCLUDE = [
21+
'.git/**',
22+
'coverage/**',
23+
'.github/**',
24+
'.adonisjs/**',
25+
'tmp/**',
26+
'storage/**',
27+
'build/**',
28+
]
2129
const DEFAULT_EXCLUDES = ['node_modules/**', 'bower_components/**', 'jspm_packages/**']
2230

2331
/**

0 commit comments

Comments
 (0)