Skip to content

Commit cbd3a2a

Browse files
committed
chore: lint config itself
1 parent 0d38d63 commit cbd3a2a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/configs/vue.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { typescriptCore } from './ts'
1010

1111
const vueTs = (preset: TsPresets) => typescriptCore(preset)
1212
.filter(config => config.name !== 'typescript-eslint/base')
13-
.map((config) => {
13+
.map(config => {
1414
return {
1515
...config,
1616
files: [GLOB_VUE],

tests/eslint-playground.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ describe('lint: work with playground', () => {
1212
'playground/App.vue',
1313
]
1414

15-
it.each(playgroundFiles)('should lint %s without fatal errors', async (file) => {
15+
it.each(playgroundFiles)('should lint %s without fatal errors', async file => {
1616
const eslint = new ESLint({
1717
cwd,
1818
})

0 commit comments

Comments
 (0)