@nerjs/eslint-config 1.0.1 → 2.0.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.
Files changed (3) hide show
  1. package/README.md +2 -29
  2. package/index.js +1 -47
  3. package/package.json +17 -15
package/README.md CHANGED
@@ -1,30 +1,3 @@
1
- # Frequently used eslint config
1
+ # The utility is incomplete and is no longer supported.
2
2
 
3
-
4
- ## Install
5
-
6
- ```
7
- npm i @nerjs/eslint-config
8
- ```
9
- or
10
- ```
11
- yarn add @nerjs/eslint-config
12
- ```
13
-
14
-
15
- ## Use:
16
-
17
-
18
- > file: `.eslintrc.js`
19
-
20
- ```js
21
- module.exports = {
22
- extends: '@nerjs/eslint-config'
23
- }
24
- ```
25
-
26
-
27
- ---
28
-
29
-
30
- #### [:link: All utils ](https://github.com/nerjs/utils#readme)
3
+ Feel free to check out [my profile](https://github.com/nerjs) if you're interested
package/index.js CHANGED
@@ -1,47 +1 @@
1
- module.exports = {
2
- parser: 'babel-eslint',
3
-
4
- extends: ['prettier'],
5
-
6
- plugins: ['prettier'],
7
-
8
- parserOptions: {
9
- sourceType: 'module',
10
- allowImportExportEverywhere: false,
11
- codeFrame: true,
12
- },
13
- globals: {
14
- __DEV__: true,
15
- __DEVBANNER__: false,
16
- __APP__: false,
17
- },
18
-
19
- env: {
20
- browser: true,
21
- es6: true,
22
- },
23
-
24
- rules: {
25
- 'no-undef-init': 'off',
26
- 'no-return-await': 'off',
27
- 'no-nested-ternary': 'off',
28
- 'no-plusplus': 'off',
29
- 'consistent-return': 'off',
30
- 'no-restricted-globals': 'off',
31
- 'no-param-reassign': 'off',
32
- 'prettier/prettier': [
33
- 'error',
34
- {
35
- parser: 'babel',
36
- useTabs: false,
37
- semi: false,
38
- singleQuote: true,
39
- trailingComma: 'all',
40
- bracketSpacing: true,
41
- arrowParens: 'avoid',
42
- tabWidth: 2,
43
- printWidth: 125,
44
- },
45
- ],
46
- },
47
- }
1
+ throw new Error('The utility is incomplete and is no longer supported. ')
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nerjs/eslint-config",
3
- "version": "1.0.1",
4
- "description": "frequently used eslint config",
3
+ "version": "2.0.1",
4
+ "description": "The utility is incomplete and is no longer supported.",
5
5
  "main": "index.js",
6
6
  "keywords": [
7
7
  "utils",
@@ -12,19 +12,21 @@
12
12
  ],
13
13
  "author": "nerjs",
14
14
  "license": "MIT",
15
- "bugs": {
16
- "url": "https://github.com/nerjs/utils/labels/eslint-config"
17
- },
18
- "homepage": "https://github.com/nerjs/utils/tree/master/eslint-config#readme",
19
- "repository": {
20
- "type": "git",
21
- "url": "git+https://github.com/nerjs/utils.git"
22
- },
15
+ "homepage": "https://github.com/nerjs",
23
16
  "dependencies": {
24
- "babel-eslint": "^10.0.3",
25
- "eslint": "^6.4.0",
26
- "eslint-config-prettier": "^6.3.0",
27
- "eslint-plugin-prettier": "^3.1.0",
28
- "prettier": "^1.18.2"
17
+ "@nerjs/batchloader": "^2.1.0",
18
+ "@nerjs/errors": "^1.2.2",
19
+ "@nerjs/eslint": "^1.0.2",
20
+ "@nerjs/webpack": "^1.0.3",
21
+ "create-redux-store": "^1.1.2",
22
+ "electron-ebt": "^1.1.0",
23
+ "helpers-promise": "^1.3.0",
24
+ "nerjs-utils": "^0.1.23",
25
+ "nlogs": "^2.4.4",
26
+ "@nerjs/gnome-shell-types": "^0.0.2",
27
+ "react-trc": "^2.0.0",
28
+ "@nerjs/task-planner": "^0.0.3",
29
+ "@nerjs/express": "2.0.1",
30
+ "@nerjs/gql": "2.0.1"
29
31
  }
30
32
  }