Skip to content

Commit

Permalink
🎨 chore: クォーテーションを可能γͺι™γ‚Šε‰Šι™€
Browse files Browse the repository at this point in the history
  • Loading branch information
tyokinuhata committed Dec 4, 2023
1 parent 97f11e6 commit 0186073
Showing 1 changed file with 24 additions and 22 deletions.
46 changes: 24 additions & 22 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,39 +11,41 @@ extends:
parser: '@typescript-eslint/parser'

parserOptions:
ecmaVersion: 'latest'
sourceType: 'module'
project: './tsconfig.eslint.json'
ecmaVersion: latest
sourceType: module
project: ./tsconfig.eslint.json
jsx: true

rules:
import/order:
- 'warn'
- warn
- groups:
- 'builtin'
- 'external'
- 'internal'
- 'parent'
- 'sibling'
- 'index'
- 'object'
- 'type'
newlines-between: 'always'
pathGroupsExcludedImportTypes: ['builtin']
- builtin
- external
- internal
- parent
- sibling
- index
- object
- type
newlines-between: always
pathGroupsExcludedImportTypes:
- builtin
alphabetize:
order: 'asc'
order: asc
caseInsensitive: true
eqeqeq: 'error'
eqeqeq: error
'@typescript-eslint/no-misused-promises':
- 'error'
- error
- checksVoidReturn:
attributes: false
'@typescript-eslint/consistent-type-definitions':
- 'error'
- 'type'
react/jsx-sort-props: 'warn'
- error
- type
react/jsx-sort-props: warn

overrides:
- files: ['next-env.d.ts']
- files:
- next-env.d.ts
rules:
'@typescript-eslint/triple-slash-reference': 'off'
'@typescript-eslint/triple-slash-reference': off

0 comments on commit 0186073

Please sign in to comment.