We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ec0b35 commit 078da34Copy full SHA for 078da34
2 files changed
.github/workflows/commit.yml
@@ -2,7 +2,7 @@ name: Commit
2
on:
3
push:
4
jobs:
5
- conventional-commit:
+ conventional-commits:
6
runs-on: ubuntu-latest
7
name: Checking commit name
8
steps:
packages/eslint-config/src/typescript.js
@@ -8,6 +8,12 @@ module.exports = {
files: ['*.ts', '*.tsx'],
9
extends: ['plugin:@typescript-eslint/recommended'].concat(['./rules/typescript'].map(require.resolve)),
10
parser: '@typescript-eslint/parser'
11
+ },
12
+ {
13
+ files: ['*.d.ts'],
14
+ rules: {
15
+ 'import/unambiguous': 'off'
16
+ }
17
}
18
]
19
0 commit comments