forked from reductstore/setup-protoc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.yml
More file actions
25 lines (24 loc) · 795 Bytes
/
Copy path.eslintrc.yml
File metadata and controls
25 lines (24 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Source: https://github.com/per1234/.github/blob/main/workflow-templates/assets/check-typescript/.eslintrc.yml
# See: https://github.com/typescript-eslint/typescript-eslint/blob/main/docs/linting/README.md#configuration
# The code style defined in this file is the official standardized style to be used in all Arduino projects and should
# not be modified.
extends:
- airbnb-typescript/base
- prettier
- 'eslint:recommended'
- 'plugin:@typescript-eslint/recommended'
- 'plugin:import/recommended'
plugins:
- "@typescript-eslint"
parser: "@typescript-eslint/parser"
parserOptions:
project:
- "./tsconfig.eslint.json"
rules:
max-len:
- error
- code: 180
no-console: "off"
no-underscore-dangle: "off"
"@typescript-eslint/no-use-before-define": "off"
root: true