-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: linter config file creation (#349)
closes #344 Fixes issue where linter config files (i.e. .eslintrc.yaml) were not being created and also had generic file names. Files will now be created using the filename and config data contents specified in the specific yaml resources.
- Loading branch information
1 parent
f70429f
commit a59fa0b
Showing
6 changed files
with
119 additions
and
48 deletions.
There are no files selected for viewing
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,6 +1,6 @@ | ||
eslintrc: | ||
extends: ["google"] | ||
env: | ||
es6: true | ||
plugins: | ||
- prettier | ||
filename: ".eslintrc.yaml" | ||
settings: | ||
extends: ["google"] | ||
env: | ||
es6: true | ||
plugins: ["prettier"] |
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,5 +1,5 @@ | ||
eslintrc: | ||
extends: ['google', 'plugin:@typescript-eslint/recommended', 'prettier'] | ||
parser: '@typescript-eslint/parser' | ||
plugins: | ||
- '@typescript-eslint' | ||
filename: ".eslintrc.yaml" | ||
settings: | ||
extends: ["google", "plugin:@typescript-eslint/recommended", "prettier"] | ||
parser: "@typescript-eslint/parser" | ||
plugins: ["@typescript-eslint"] |
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