Fixed path to eslint file for tests

refs: d2c6838133

- Changed the file type but neglected to update the config filepath for tests
This commit is contained in:
Hannah Wolfe 2021-05-07 12:13:06 +01:00
parent 322664a145
commit c0054fdbd7
No known key found for this signature in database
GPG Key ID: 9F8C7532D0A6BA55

View File

@ -29,7 +29,7 @@
"lint:server": "eslint --ignore-path .eslintignore 'core/server/**/*.js' 'core/*.js' '*.js'",
"lint:shared": "eslint --ignore-path .eslintignore 'core/shared/**/*.js'",
"lint:frontend": "eslint --ignore-path .eslintignore 'core/frontend/**/*.js'",
"lint:test": "eslint -c test/.eslintrc.json --ignore-path test/.eslintignore 'test/**/*.js'",
"lint:test": "eslint -c test/.eslintrc.js --ignore-path test/.eslintignore 'test/**/*.js'",
"lint:code": "yarn lint:server && yarn lint:shared && yarn lint:frontend",
"lint": "yarn lint:server && yarn lint:shared && yarn lint:frontend && yarn lint:test",
"posttest": "yarn lint",