eslint-config-teselagen 6.0.2 → 6.0.3

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
@@ -41,3 +41,5 @@ Then add this to your package.json:
41
41
  ## Changelog
42
42
  ### v5
43
43
  -We're now using a patch to simplify installation!
44
+
45
+
package/es5.js CHANGED
@@ -6,6 +6,7 @@ module.exports = {
6
6
  },
7
7
  "parser": "babel-eslint",
8
8
  "rules": {
9
+ "import/no-anonymous-default-export": 0,
9
10
  "no-undef": 2,
10
11
  'no-console': [1, { allow: ['warn', 'error', "info"] }],
11
12
  "no-unused-vars": 1,
package/node.js CHANGED
@@ -8,6 +8,7 @@ module.exports = {
8
8
  mocha: true,
9
9
  },
10
10
  rules: {
11
+ "import/no-anonymous-default-export": 0,
11
12
  "no-undef": 2,
12
13
  "no-console": [1, { allow: ["warn", "error", "info"] }],
13
14
  "no-unused-vars": 1,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-teselagen",
3
- "version": "6.0.2",
3
+ "version": "6.0.3",
4
4
  "description": "teselagen linter rules",
5
5
  "repository": "https://github.com/TeselaGen/eslint-config-teselagen.git",
6
6
  "author": "teselagen team@teselagen",
package/react.js CHANGED
@@ -3,6 +3,7 @@ require("@rushstack/eslint-patch/modern-module-resolution");
3
3
  module.exports = {
4
4
  extends: "react-app",
5
5
  rules: {
6
+ "import/no-anonymous-default-export": 0,
6
7
  "no-var": 2,
7
8
  "no-console": [1, { allow: ["warn", "error", "info"] }],
8
9
  "no-debugger": 2,