ignore-lint-errors 0.9.0 → 0.9.2

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.
@@ -1,7 +1,7 @@
1
1
  import { readFileSync, writeFileSync } from 'node:fs';
2
2
  import { join } from 'node:path';
3
3
  import { removeFiles } from '@codemod-utils/files';
4
- import { ignoreErrors } from '../../utils/ignore-errors/stylelint.js';
4
+ import { ignoreErrors } from '../../utils/ignore-errors/eslint.js';
5
5
  import { outputFilePath, parseOutputFile } from '../../utils/linters/eslint.js';
6
6
  export function ignoreErrorsFromEslint(options) {
7
7
  const { projectRoot } = options;
package/package.json CHANGED
@@ -1,15 +1,22 @@
1
1
  {
2
2
  "name": "ignore-lint-errors",
3
- "version": "0.9.0",
3
+ "version": "0.9.2",
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",