generated from rdlabo/typescript-template-eslint-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(): pass test * feat(): rename rule name to camelCase * chore(): use angular test-utils * chore * 0.6.0-0 * fix
- Loading branch information
Showing
24 changed files
with
102 additions
and
120 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// @ts-check | ||
const eslint = require('@eslint/js'); | ||
const tseslint = require('typescript-eslint'); | ||
|
||
module.exports = tseslint.config({ | ||
files: ['**/*.ts'], | ||
ignores: ['!.*.js', '/node_modules', '/dist', '/scripts'], | ||
extends: [ | ||
eslint.configs.recommended, | ||
...tseslint.configs.recommended, | ||
...tseslint.configs.stylistic, | ||
], | ||
rules: {}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,29 @@ | ||
/* DON'T EDIT THIS FILE. This is generated by 'scripts/lib/update-lib-index.ts' */ | ||
|
||
import recommended from './configs/recommended'; | ||
|
||
import denyConstructorDi from './rules/deny-constructor-di'; | ||
import denyElement from './rules/deny-element'; | ||
import denyImportFromIonicModule from './rules/deny-import-from-ionic-module'; | ||
import denySoftPrivateModifier from './rules/deny-soft-private-modifier'; | ||
import implementsIonicLifecycle from './rules/implements-ionic-lifecycle'; | ||
import importInjectObject from './rules/import-inject-object'; | ||
import signalUseAsSignal from './rules/signal-use-as-signal'; | ||
|
||
export = { | ||
meta: { | ||
name: '@rdlabo/rules', | ||
}, | ||
configs: { | ||
recommended: require('./configs/recommended'), | ||
recommended, | ||
}, | ||
rules: { | ||
'deny-constructor-di': require('./rules/deny-constructor-di'), | ||
'deny-element': require('./rules/deny-element'), | ||
'deny-import-from-ionic-module': require('./rules/deny-import-from-ionic-module'), | ||
'deny-soft-private-modifier': require('./rules/deny-soft-private-modifier'), | ||
'implements-ionic-lifecycle': require('./rules/implements-ionic-lifecycle'), | ||
'import-inject-object': require('./rules/import-inject-object'), | ||
'signal-use-as-signal': require('./rules/signal-use-as-signal'), | ||
'deny-constructor-di': denyConstructorDi, | ||
'deny-element': denyElement, | ||
'deny-import-from-ionic-module': denyImportFromIonicModule, | ||
'deny-soft-private-modifier': denySoftPrivateModifier, | ||
'implements-ionic-lifecycle': implementsIonicLifecycle, | ||
'import-inject-object': importInjectObject, | ||
'signal-use-as-signal': signalUseAsSignal, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.