@kembec/eslint-config 1.1.0 → 1.1.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.
package/Readme.md CHANGED
@@ -73,4 +73,4 @@ Use `npm run lint` to identify issues or `npm run lint:fix` to fix many issues a
73
73
 
74
74
  ## License
75
75
 
76
- `Sunat Utils` is licensed under the [AGPL-3.0](https://opensource.org/licenses/AGPL-3.0). Its use, modification, and distribution are allowed under the terms of this license.
76
+ This project is licensed under the [AGPL-3.0](https://opensource.org/licenses/AGPL-3.0). Its use, modification, and distribution are allowed under the terms of this license.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kembec/eslint-config",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "description": "My personal linter configuration for JavaScript/TypeScript",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -9,7 +9,7 @@
9
9
  },
10
10
  "repository": {
11
11
  "type": "git",
12
- "url": "git+https://github.com/KembecDev/eslint-config-kembec.git"
12
+ "url": "git+https://github.com/Kembec/eslint-config-kembec.git"
13
13
  },
14
14
  "keywords": [
15
15
  "javascript",
@@ -23,9 +23,9 @@
23
23
  "author": "Kembec.com",
24
24
  "license": "AGPL-3.0 license",
25
25
  "bugs": {
26
- "url": "https://github.com/KembecDev/eslint-config-kembec/issues"
26
+ "url": "https://github.com/Kembec/eslint-config-kembec/issues"
27
27
  },
28
- "homepage": "https://github.com/KembecDev/eslint-config-kembec#readme",
28
+ "homepage": "https://github.com/Kembec/eslint-config-kembec#readme",
29
29
  "dependencies": {
30
30
  "@babel/core": "^7.23.9",
31
31
  "@babel/eslint-parser": "^7.23.10",
package/rules/plugins.js CHANGED
@@ -6,7 +6,31 @@ module.exports = {
6
6
  "import/no-duplicates": "error",
7
7
  "import/no-unresolved": "error",
8
8
  "import/no-webpack-loader-syntax": "error",
9
- "prettier/prettier": ["error", { useTabs: true, printWidth: 100 }],
9
+ "prettier/prettier": [
10
+ "error",
11
+ {
12
+ arrowParens: "always",
13
+ bracketSameLine: false,
14
+ bracketSpacing: true,
15
+ semi: true,
16
+ experimentalTernaries: false,
17
+ singleQuote: false,
18
+ jsxSingleQuote: false,
19
+ quoteProps: "as-needed",
20
+ trailingComma: "es5",
21
+ singleAttributePerLine: true,
22
+ htmlWhitespaceSensitivity: "css",
23
+ vueIndentScriptAndStyle: true,
24
+ proseWrap: "preserve",
25
+ insertPragma: false,
26
+ printWidth: 120,
27
+ requirePragma: false,
28
+ tabWidth: 4,
29
+ useTabs: true,
30
+ embeddedLanguageFormatting: "auto",
31
+ endOfLine: "lf",
32
+ },
33
+ ],
10
34
  "simple-import-sort/exports": "error",
11
35
  "simple-import-sort/imports": "error",
12
36
  "unused-imports/no-unused-imports": "error",