Last active
February 21, 2021 23:05
-
-
Save mattfysh/d121966b4c121ea0baba3d70a16205b6 to your computer and use it in GitHub Desktop.
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
env: | |
node: true | |
es6: true | |
parserOptions: | |
ecmaVersion: 2020 | |
sourceType: module | |
extends: | |
- airbnb-base | |
- prettier | |
rules: | |
radix: off | |
overrides: | |
- files: '**/*.spec.*' | |
env: | |
jest: true | |
- files: '**/*.ts' | |
extends: | |
- airbnb-typescript/base | |
- prettier | |
- files: '**/*.svelte' | |
plugins: | |
- svelte3 | |
processor: svelte3/svelte3 | |
rules: | |
no-else-return: off | |
import/first: off | |
import/no-mutable-exports: off | |
import/order: off | |
import/prefer-default-export: off |
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
semi: false | |
singleQuote: true | |
trailingComma: es5 | |
arrowParens: avoid | |
svelteBracketNewLine: false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment