forked from serverless-dns/serverless-dns
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
72 additions
and
24 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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
module.exports = { | ||
env: { | ||
// Which globals variables are allowed. | ||
es2021: true, | ||
node: true, | ||
worker: true, | ||
}, | ||
|
||
extends: [ | ||
// See: https://github.com/google/eslint-config-google | ||
"google", | ||
], | ||
|
||
parserOptions: { | ||
ecmaVersion: 13, | ||
sourceType: "module", | ||
}, | ||
|
||
plugins: ["prettier"], | ||
rules: { | ||
// Rules disabled to avoid conflicts with prettier | ||
// See: https://github.com/prettier/eslint-config-prettier | ||
"indent": 0, | ||
"object-curly-spacing": 0, | ||
"operator-linebreak": 0, | ||
"space-before-function-paren": 0, | ||
|
||
// Our rules overrides. | ||
"comma-dangle": 0, | ||
"require-jsdoc": 0, | ||
"quotes": ["error", "double", { allowTemplateLiterals: true }], | ||
"no-unused-vars": "warn", | ||
|
||
// Enforces rules from .prettierrc file. | ||
// These should be fixed automatically with formatting. | ||
// See: https://github.com/prettier/eslint-plugin-prettier | ||
"prettier/prettier": "warn", | ||
}, | ||
}; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"printWidth": 80, | ||
"tabWidth": 2, | ||
"semi": true, | ||
"singleQuote": false, | ||
"quoteProps": "consistent", | ||
"trailingComma": "es5" | ||
} |
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