@davidsneighbour/eslint-config 5.0.0 → 5.0.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.
Files changed (2) hide show
  1. package/README.md +40 -0
  2. package/package.json +19 -19
package/README.md ADDED
@@ -0,0 +1,40 @@
1
+ # ESLint
2
+
3
+ Add .eslintrc with the following content to your project:
4
+
5
+ ```json
6
+ {
7
+ "extends": "@davidsneighbour/eslint-config"
8
+ }
9
+ ```
10
+
11
+ or in `package.json`:
12
+
13
+ ```json
14
+ {
15
+ "eslintConfig": {
16
+ "extends": "@davidsneighbour/eslint-config"
17
+ }
18
+ }
19
+ ```
20
+
21
+ Write better code.
22
+
23
+ # All configurations
24
+
25
+ - [Babel](/packages/babel-config)
26
+ - [Bootstrap](/packages/bootstrap-config)
27
+ - [Browserslist](/packages/browserslist-config)
28
+ - [Commitlint](/packages/commitlint-config)
29
+ - [CssNano](/packages/cssnano-config)
30
+ - [Cypress](/packages/cypress-config)
31
+ - [ESLint](/packages/eslint-config)
32
+ - [Markdownlint](/packages/markdownlint-config)
33
+ - [PostCSS](/packages/postcss-config)
34
+ - [Prettier](/packages/prettier-config)
35
+ - [Remark Lint](/packages/remark-config)
36
+ - [Standard Version](/packages/standard-version-config)
37
+ - [Stylelint](/packages/stylelint-config)
38
+ - [Textlint](/packages/textlint-config)
39
+ - [Tools](/packages/tools)
40
+ - [Webpack](/packages/webpack-config)
package/package.json CHANGED
@@ -1,35 +1,35 @@
1
1
  {
2
2
  "name": "@davidsneighbour/eslint-config",
3
- "version": "5.0.0",
4
3
  "description": "ESlint configuration for use in davidsneighbour projects.",
5
- "main": "index.js",
4
+ "version": "5.0.2",
5
+ "license": "MIT",
6
6
  "repository": "davidsneighbour/configurations",
7
7
  "author": {
8
8
  "name": "Patrick Kollitsch",
9
9
  "email": "patrick@davids-neighbour.com",
10
10
  "web": "https://davids-neighbour.com"
11
11
  },
12
- "license": "MIT",
13
12
  "bugs": "https://github.com/davidsneighbour/configurations/issues",
14
13
  "homepage": "https://github.com/davidsneighbour/eslint-config#readme",
15
14
  "dependencies": {
16
- "@typescript-eslint/eslint-plugin": "^5.49.0",
17
- "@typescript-eslint/parser": "^5.49.0",
18
- "eslint": "^8.32.0",
19
- "eslint-config-airbnb-base": "^15.0.0",
20
- "eslint-plugin-anti-trojan-source": "^1.1.1",
21
- "eslint-plugin-compat": "^4.0.2",
22
- "eslint-plugin-cypress": "^2.12.1",
23
- "eslint-plugin-html": "^7.1.0",
24
- "eslint-plugin-import": "^2.27.5",
25
- "eslint-plugin-markdown": "^3.0.0",
26
- "eslint-plugin-no-loops": "^0.3.0",
27
- "eslint-plugin-package-json": "^0.1.4",
28
- "eslint-plugin-sonarjs": "^0.18.0",
29
- "eslint-plugin-unicorn": "^45.0.2"
15
+ "@typescript-eslint/eslint-plugin": "5.49.0",
16
+ "@typescript-eslint/parser": "5.49.0",
17
+ "eslint": "8.33.0",
18
+ "eslint-config-airbnb-base": "15.0.0",
19
+ "eslint-plugin-anti-trojan-source": "1.1.1",
20
+ "eslint-plugin-compat": "4.0.2",
21
+ "eslint-plugin-cypress": "2.12.1",
22
+ "eslint-plugin-html": "7.1.0",
23
+ "eslint-plugin-import": "2.27.5",
24
+ "eslint-plugin-markdown": "3.0.0",
25
+ "eslint-plugin-no-loops": "0.3.0",
26
+ "eslint-plugin-package-json": "0.1.4",
27
+ "eslint-plugin-sonarjs": "0.18.0",
28
+ "eslint-plugin-unicorn": "45.0.2"
30
29
  },
31
30
  "scripts": {
32
- "release": "../../release"
31
+ "fixpack": "fixpack"
33
32
  },
34
- "gitHead": "18e1ca9137648bce9b9a0fb9ecc2ceb85596f32b"
33
+ "main": "index.js",
34
+ "gitHead": "8af7f637920a8701d198aa71ecd164fe02b1f6e7"
35
35
  }