File tree Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -44,8 +44,8 @@ overrides:
44
44
- " **/*.mjs"
45
45
- " **/*.cjs"
46
46
- " **/*.jsx"
47
- extends :
48
- - " plugin:react/recommended"
47
+ # extends:
48
+ # - "plugin:react/recommended"
49
49
parserOptions :
50
50
sourceType : module
51
51
ecmaVersion : latest
@@ -61,7 +61,7 @@ overrides:
61
61
extends :
62
62
- " plugin:@typescript-eslint/recommended"
63
63
- plugin:n/recommended
64
- - plugin:react/recommended
64
+ # - plugin:react/recommended
65
65
- prettier
66
66
rules :
67
67
n/no-missing-import : off
Original file line number Diff line number Diff line change 59
59
DEFAULT_BRANCH : main
60
60
LINTER_RULES_PATH : .
61
61
VALIDATE_JSCPD : false
62
- TYPESCRIPT_DEFAULT_STYLE : prettier
63
62
VALIDATE_TYPESCRIPT_STANDARD : false
64
63
concurrency :
65
64
group : ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
Original file line number Diff line number Diff line change
1
+ // https://github.com/super-linter/super-linter/blob/5d6e3fcecc2b2906eedc2d15495fd6027bf51a9e/commitlint.config.js
2
+ module . exports = {
3
+ extends : [ "@commitlint/config-conventional" ] ,
4
+ helpUrl : "https://www.conventionalcommits.org/" ,
5
+ // We need this until https://github.com/dependabot/dependabot-core/issues/2445
6
+ // is resolved.
7
+ ignores : [ ( msg : string ) => / S i g n e d - o f f - b y : d e p e n d a b o t \[ b o t ] / m. test ( msg ) ] ,
8
+ } ;
You can’t perform that action at this time.
0 commit comments