-
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.
Temporarily remove 3rd party rules and customize antfu defaults (#48)
- Loading branch information
Showing
17 changed files
with
390 additions
and
477 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": ["github>oncoursesystems/renovate-config"] | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": ["github>oncoursesystems/renovate-config"] | ||
} |
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,53 +1,53 @@ | ||
{ | ||
|
||
// Auto fix | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll.eslint": "explicit", | ||
"source.organizeImports": "never" | ||
}, | ||
"editor.formatOnSave": false, | ||
// Auto fix | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll.eslint": "explicit", | ||
"source.organizeImports": "never" | ||
}, | ||
"editor.formatOnSave": false, | ||
|
||
"eslint.options": { | ||
"flags": ["unstable_ts_config"] | ||
}, | ||
"eslint.options": { | ||
"flags": ["unstable_ts_config"] | ||
}, | ||
|
||
// Silent the stylistic rules in you IDE, but still auto fix them | ||
"eslint.rules.customizations": [ | ||
{ "fixable": true, "rule": "style/*", "severity": "off" }, | ||
{ "fixable": true, "rule": "*-indent", "severity": "off" }, | ||
{ "fixable": true, "rule": "*-spacing", "severity": "off" }, | ||
{ "fixable": true, "rule": "*-spaces", "severity": "off" }, | ||
{ "fixable": true, "rule": "*-order", "severity": "off" }, | ||
{ "fixable": true, "rule": "*-dangle", "severity": "off" }, | ||
{ "fixable": true, "rule": "*-newline", "severity": "off" }, | ||
{ "fixable": true, "rule": "*quotes", "severity": "off" }, | ||
{ "fixable": true, "rule": "*semi", "severity": "off" } | ||
], | ||
"eslint.runtime": "node", | ||
// Silent the stylistic rules in you IDE, but still auto fix them | ||
"eslint.rules.customizations": [ | ||
{ "fixable": true, "rule": "style/*", "severity": "off" }, | ||
{ "fixable": true, "rule": "*-indent", "severity": "off" }, | ||
{ "fixable": true, "rule": "*-spacing", "severity": "off" }, | ||
{ "fixable": true, "rule": "*-spaces", "severity": "off" }, | ||
{ "fixable": true, "rule": "*-order", "severity": "off" }, | ||
{ "fixable": true, "rule": "*-dangle", "severity": "off" }, | ||
{ "fixable": true, "rule": "*-newline", "severity": "off" }, | ||
{ "fixable": true, "rule": "*quotes", "severity": "off" }, | ||
{ "fixable": true, "rule": "*semi", "severity": "off" } | ||
], | ||
"eslint.runtime": "node", | ||
|
||
// Enable eslint for all supported languages | ||
"eslint.validate": [ | ||
"html", | ||
"javascript", | ||
"javascriptreact", | ||
"json", | ||
"json5", | ||
"jsonc", | ||
"markdown", | ||
"toml", | ||
"typescript", | ||
"typescriptreact", | ||
"vue", | ||
"xml", | ||
"yaml" | ||
], | ||
// Enable eslint for all supported languages | ||
"eslint.validate": [ | ||
"html", | ||
"javascript", | ||
"javascriptreact", | ||
"json", | ||
"json5", | ||
"jsonc", | ||
"markdown", | ||
"toml", | ||
"typescript", | ||
"typescriptreact", | ||
"vue", | ||
"xml", | ||
"yaml" | ||
], | ||
|
||
"pair-diff.patterns": [ | ||
{ | ||
"source": "./fixtures/output/**/*.*", | ||
"target": "./fixtures/input/<base>" | ||
} | ||
], | ||
// Disable the default formatter, use eslint instead | ||
"prettier.enable": false | ||
"pair-diff.patterns": [ | ||
{ | ||
"source": "./fixtures/output/**/*.*", | ||
"target": "./fixtures/input/<base>" | ||
} | ||
], | ||
// Disable the default formatter, use eslint instead | ||
"prettier.enable": false | ||
} |
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,10 +1,10 @@ | ||
import oncourse from './src'; | ||
|
||
export default oncourse({ | ||
type: 'lib', | ||
type: 'lib', | ||
}, { | ||
ignores: [ | ||
'fixtures', | ||
'_fixtures', | ||
], | ||
ignores: [ | ||
'fixtures', | ||
'_fixtures', | ||
], | ||
}); |
Oops, something went wrong.