Skip to content

Commit da2beb4

Browse files
committed
chore: lint from root
1 parent b045aab commit da2beb4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

babel.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function isBabelLoader(caller) {
1+
function isBabelLoader (caller) {
22
return caller && caller.name === 'babel-loader'
33
}
44

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
],
66
"scripts": {
77
"dev": "nuxt-ts",
8-
"lint": "eslint --ext .ts,.tsx,.js packages",
8+
"lint": "eslint --ext .ts,.tsx,.js .",
99
"lint:fix": "yarn lint --fix",
1010
"test": "yarn lint && yarn test:unit && yarn test:types",
1111
"test:types": "tsc -p packages/types/test",

test/setup.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import exit from 'exit'
33

44
consola.mockTypes(() => jest.fn())
55

6-
function errorTrap(error) {
6+
function errorTrap (error) {
77
process.stderr.write('\n' + error.stack + '\n')
88
exit(1)
99
}

0 commit comments

Comments
 (0)