-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsider.yml
59 lines (53 loc) · 1.53 KB
/
sider.yml
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# This is a configuration file to customize code analysis by Sider.
#
# For more information, see the documentation:
# https://help.sider.review/getting-started/custom-configuration
# Customize each tool. If analyses fail, try adjusting each option referencing the following example.
linter:
# # ESLint example. See https://help.sider.review/tools/javascript/eslint
eslint:
# root_dir: project/
# dependencies:
# - my-eslint-plugin@2
npm_install: true
# target:
# - src/
# - lib/
# ext: [.js, .jsx]
config: .eslintrc.json
ignore-path: .eslintignore
# ignore-pattern: "vendor/**"
# no-ignore: true
# global: ["require", "exports:true"]
# quiet: true
# # Misspell example. See https://help.sider.review/tools/others/misspell
misspell:
# root_dir: project/
target: [src/, test/, README.md, CHANGELOG.md, CONTRIBUTING.md, .github/]
# exclude: [dist, node_modules]
locale: US
# ignore: [center, behavior]
# # ShellCheck example. See https://help.sider.review/tools/shellscript/shellcheck
# shellcheck:
# root_dir: project/
# target:
# - "**/*.{sh,bash}"
# - shebang: true
# include: [SC2104, SC2105]
# exclude: [SC1000, SC1118]
# enable: all
# shell: bash
# severity: error
# norc: true
# Ignore specific files. Example:
# ignore:
# - "*.pdf"
# - "*.mp4"
# - "*.min.*"
# - "images/**"
# Exclude specific branches. Example:
# branches:
# exclude:
# - master
# - development
# - /^release-.*$/