ignore-lint-errors 0.8.0 → 0.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -87,7 +87,7 @@ pnpx ignore-lint-errors --linter eslint --src app/{components,templates}/**/*.gt
87
87
  pnpx ignore-lint-errors --linter stylelint --src app/components/example-1.module.css app/templates/example-2.module.css
88
88
 
89
89
  # stylelint supports globs
90
- pnpx ignore-lint-errors --linter stylelint --src **/*.scss
90
+ pnpx ignore-lint-errors --linter stylelint --src app/components/**/*.css
91
91
  ```
92
92
 
93
93
  </details>
@@ -3,7 +3,7 @@ import { outputFilePath } from '../../utils/linters/stylelint.js';
3
3
  function getSrc(options) {
4
4
  const { src } = options;
5
5
  if (src === undefined) {
6
- return '**/*.css';
6
+ return '"**/*.{css,scss}"';
7
7
  }
8
8
  return src.map((token) => `"${token}"`).join(' ');
9
9
  }
package/package.json CHANGED
@@ -1,15 +1,22 @@
1
1
  {
2
2
  "name": "ignore-lint-errors",
3
- "version": "0.8.0",
3
+ "version": "0.9.1",
4
4
  "description": "Codemod to ignore lint errors per line",
5
5
  "keywords": [
6
6
  "codemod",
7
7
  "ember-codemod",
8
- "emberjs"
8
+ "emberjs",
9
+ "eslint",
10
+ "glint",
11
+ "stylelint",
12
+ "typescript"
9
13
  ],
10
- "repository": "",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/ijlee2/ignore-lint-errors.git"
17
+ },
11
18
  "license": "MIT",
12
- "author": "",
19
+ "author": "Isaac J. Lee",
13
20
  "type": "module",
14
21
  "main": "dist/src/index.js",
15
22
  "bin": "dist/bin/ignore-lint-errors.js",
@@ -25,7 +32,7 @@
25
32
  "yargs": "^18.0.0"
26
33
  },
27
34
  "devDependencies": {
28
- "@changesets/cli": "^2.30.0",
35
+ "@changesets/cli": "^2.31.0",
29
36
  "@codemod-utils/tests": "^3.0.1",
30
37
  "@ijlee2-frontend-configs/changesets": "^2.1.0",
31
38
  "@ijlee2-frontend-configs/eslint-config-node": "^3.2.0",