@anolilab/eslint-config 14.0.21 → 14.0.22
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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## @anolilab/eslint-config [14.0.22](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/eslint-config@14.0.21...@anolilab/eslint-config@14.0.22) (2023-10-10)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* disabled etc/no-deprecated if deprecation is used ([65276fa](https://github.com/anolilab/javascript-style-guide/commit/65276fac2c68e6b3e7950ebfbb4d88ecd1fe6429))
|
|
7
|
+
|
|
1
8
|
## @anolilab/eslint-config [14.0.21](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/eslint-config@14.0.20...@anolilab/eslint-config@14.0.21) (2023-10-10)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
var chunkWG6GTAIA_js = require('../../chunk-WG6GTAIA.js');
|
|
4
4
|
require('../../chunk-MFE6DF6Y.js');
|
|
5
5
|
|
|
6
|
-
var t=chunkWG6GTAIA_js.a("typescript",{plugins:["deprecation"],extends:["plugin:deprecation/recommended"]}),
|
|
6
|
+
var t=chunkWG6GTAIA_js.a("typescript",{plugins:["deprecation"],extends:["plugin:deprecation/recommended"],rules:{"etc/no-deprecated":"off"}}),o=t;
|
|
7
7
|
|
|
8
|
-
module.exports =
|
|
8
|
+
module.exports = o;
|
|
9
9
|
//# sourceMappingURL=out.js.map
|
|
10
10
|
//# sourceMappingURL=deprecation.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/config/plugins/deprecation.ts"],"names":["config","createConfig","deprecation_default"],"mappings":"4EAKA,IAAMA,EAAwBC,EAAa,aAAc,CACrD,QAAS,CAAC,aAAa,EACvB,QAAS,CAAC,gCAAgC,
|
|
1
|
+
{"version":3,"sources":["../../../src/config/plugins/deprecation.ts"],"names":["config","createConfig","deprecation_default"],"mappings":"4EAKA,IAAMA,EAAwBC,EAAa,aAAc,CACrD,QAAS,CAAC,aAAa,EACvB,QAAS,CAAC,gCAAgC,EAC1C,MAAO,CAEH,oBAAqB,KACzB,CACJ,CAAC,EAEMC,EAAQF","sourcesContent":["import type { Linter } from \"eslint\";\n\nimport { createConfig } from \"../../utils/create-config\";\n\n// @see https://github.com/francoismassart/eslint-plugin-tailwindcss,\nconst config: Linter.Config = createConfig(\"typescript\", {\n plugins: [\"deprecation\"],\n extends: [\"plugin:deprecation/recommended\"],\n rules: {\n // Disabled because of deprecation/deprecation\n \"etc/no-deprecated\": \"off\",\n },\n});\n\nexport default config;\n"]}
|