Skip to content

Commit

Permalink
fix: npm scripts order
Browse files Browse the repository at this point in the history
  • Loading branch information
aladdin-add committed Apr 7, 2024
1 parent c96fd06 commit c9490fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"lint:js-docs": "eslint --no-inline-config \"**/*.md\"",
"lint:package-json": "npmPkgJsonLint .",
"release": "release-it",
"test:remote": "eslint-remote-tester",
"test": "nyc --all --check-coverage --include lib mocha tests --recursive",
"test:remote": "eslint-remote-tester",
"update:eslint-docs": "eslint-doc-generator"
},
"files": [
Expand Down
6 changes: 1 addition & 5 deletions tests/lib/rules/test-case-shorthand-strings.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,7 @@ ruleTester.run('test-case-shorthand-strings', rule, {
getTestCases(['"foo"']),
getTestCases(['"foo"', '"bar"']),
getTestCases(['"foo"', '"bar"', '{ code: "foo", options: ["bar"] }']),
getTestCases([
'"foo"',
'"bar"',
'{ code: "foo", parserOptions: ["bar"] }',
]),
getTestCases(['"foo"', '"bar"', '{ code: "foo", parserOptions: ["bar"] }']),
getTestCases(['`foo`']),
getTestCases(['tag`foo`']),

Expand Down

0 comments on commit c9490fc

Please sign in to comment.