Skip to content

Commit c9490fc

Browse files
committed
fix: npm scripts order
1 parent c96fd06 commit c9490fc

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
"lint:js-docs": "eslint --no-inline-config \"**/*.md\"",
1919
"lint:package-json": "npmPkgJsonLint .",
2020
"release": "release-it",
21-
"test:remote": "eslint-remote-tester",
2221
"test": "nyc --all --check-coverage --include lib mocha tests --recursive",
22+
"test:remote": "eslint-remote-tester",
2323
"update:eslint-docs": "eslint-doc-generator"
2424
},
2525
"files": [

tests/lib/rules/test-case-shorthand-strings.js

+1-5
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,7 @@ ruleTester.run('test-case-shorthand-strings', rule, {
4949
getTestCases(['"foo"']),
5050
getTestCases(['"foo"', '"bar"']),
5151
getTestCases(['"foo"', '"bar"', '{ code: "foo", options: ["bar"] }']),
52-
getTestCases([
53-
'"foo"',
54-
'"bar"',
55-
'{ code: "foo", parserOptions: ["bar"] }',
56-
]),
52+
getTestCases(['"foo"', '"bar"', '{ code: "foo", parserOptions: ["bar"] }']),
5753
getTestCases(['`foo`']),
5854
getTestCases(['tag`foo`']),
5955

0 commit comments

Comments
 (0)