@aiou/eslint-config 0.6.1 → 0.7.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 +1 -1
  2. package/index.js +1 -12
  3. package/package.json +5 -8
package/README.md CHANGED
@@ -21,7 +21,6 @@
21
21
  extends from
22
22
 
23
23
  ```tsx
24
- eslint-plugin-prettier
25
24
  eslint-config-standard
26
25
  eslint-plugin-eslint-comments
27
26
  eslint-plugin-html
@@ -33,6 +32,7 @@ eslint-plugin-unicorn
33
32
  eslint-plugin-yml
34
33
  eslint-plugin-react
35
34
  eslint-plugin-react-hooks
35
+ eslint-plugin-tailwindcss
36
36
  @typescript-eslint/eslint-plugin
37
37
  ```
38
38
 
package/index.js CHANGED
@@ -1,18 +1,7 @@
1
1
  module.exports = {
2
- extends: ['@aiou/eslint-config-react', 'plugin:prettier/recommended'],
2
+ extends: ['@aiou/eslint-config-react'],
3
3
  plugins: ['@aiou/progress'],
4
4
  rules: {
5
- 'prettier/prettier': [
6
- 'error',
7
- {
8
- printWidth: 100,
9
- semi: false,
10
- singleQuote: true,
11
- useTabs: false,
12
- tabWidth: 2,
13
- trailingComma: 'all',
14
- },
15
- ],
16
5
  '@aiou/progress/activate': 1,
17
6
  },
18
7
  ignorePatterns: require('@aiou/eslint-ignore'),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aiou/eslint-config",
3
- "version": "0.6.1",
3
+ "version": "0.7.1",
4
4
  "description": "eslint config for aiou template",
5
5
  "keywords": [],
6
6
  "license": "MIT",
@@ -13,15 +13,12 @@
13
13
  "access": "public"
14
14
  },
15
15
  "peerDependencies": {
16
- "eslint": ">=7.4.0",
17
- "prettier": ">=2.2.1"
16
+ "eslint": ">=7.4.0 || ^8"
18
17
  },
19
18
  "dependencies": {
20
- "@aiou/eslint-config-react": "0.5.0",
21
- "@aiou/eslint-ignore": "0.3.1",
22
- "@aiou/eslint-plugin-progress": "0.3.0",
23
- "eslint-config-prettier": "^8.5.0",
24
- "eslint-plugin-prettier": "^4.2.1"
19
+ "@aiou/eslint-config-react": "0.6.0",
20
+ "@aiou/eslint-ignore": "0.3.2",
21
+ "@aiou/eslint-plugin-progress": "0.3.1"
25
22
  },
26
23
  "devDependencies": {
27
24
  "eslint": "^8.26.0"