-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Welcome to [Sider](https://sider.review/)! 🎉 This is an onboarding PR to help you understand and configure Sider. You can edit the `sider.yml` file in this PR to fix analysis failures. Of course, you can close this PR when Sider works well without this `sider.yml`. If you have any questions, our [documentation](https://help.sider.review/getting-started/custom-configuration) could help you. 📃
- Loading branch information
sider[bot]
authored
Feb 24, 2022
1 parent
9ec0b7a
commit 0a6a488
Showing
1 changed file
with
112 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,112 @@ | ||
# 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: false | ||
# target: | ||
# - src/ | ||
# - lib/ | ||
# ext: [.js, .jsx] | ||
# config: config/.eslintrc.js | ||
# ignore-path: config/.eslintignore | ||
# ignore-pattern: "vendor/**" | ||
# no-ignore: true | ||
# global: ["require", "exports:true"] | ||
# quiet: true | ||
|
||
# # Flake8 example. See https://help.sider.review/tools/python/flake8 | ||
# flake8: | ||
# root_dir: project/ | ||
# dependencies: | ||
# - flake8-bugbear | ||
# - flake8-builtins==1.4.1 | ||
# - git+https://github.com/PyCQA/flake8-import-order.git@51e16f33065512afa1a85a20b2c2d3be768f78ea | ||
# - { name: "flake8-docstrings", version: "==1.6.0" } | ||
# target: src/ | ||
# config: config/.flake8 | ||
# parallel: false | ||
|
||
# # hadolint example. See https://help.sider.review/tools/dockerfile/hadolint | ||
# hadolint: | ||
# root_dir: project/ | ||
# target: | ||
# - images/**/Dockerfile | ||
# ignore: | ||
# - DL3003 | ||
# - SC1010 | ||
# trusted-registry: | ||
# - docker.io | ||
# - my-company.com:5000 | ||
# config: config/hadolint.yaml | ||
|
||
# # Misspell example. See https://help.sider.review/tools/others/misspell | ||
# misspell: | ||
# root_dir: project/ | ||
# target: [src/, test/] | ||
# exclude: ["**/*.min.*"] | ||
# locale: UK | ||
# ignore: [center, behavior] | ||
|
||
# # remark-lint example. See https://help.sider.review/tools/markdown/remark-lint | ||
# remark_lint: | ||
# root_dir: project/ | ||
# dependencies: | ||
# - my-remark-plugin@2 | ||
# npm_install: false | ||
# target: [docs/] | ||
# ext: "md,markdown" | ||
# rc-path: config/.remarkrc | ||
# ignore-path: config/.remarkignore | ||
# use: | ||
# - remark-lint-file-extension | ||
# - remark-lint-no-heading-punctuation | ||
|
||
# # 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 | ||
|
||
# # stylelint example. See https://help.sider.review/tools/css/stylelint | ||
# stylelint: | ||
# root_dir: project/ | ||
# dependencies: | ||
# - my-stylelint-plugin@2 | ||
# npm_install: false | ||
# config: config/.stylelintrc.yml | ||
# syntax: scss | ||
# ignore-path: config/.stylelintignore | ||
# ignore-disables: true | ||
# report-needless-disables: true | ||
# quiet: true | ||
# target: ["app/**/*.scss"] | ||
|
||
# Ignore specific files. Example: | ||
# ignore: | ||
# - "*.pdf" | ||
# - "*.mp4" | ||
# - "*.min.*" | ||
# - "images/**" | ||
|
||
# Exclude specific branches. Example: | ||
# branches: | ||
# exclude: | ||
# - master | ||
# - development | ||
# - /^release-.*$/ |