mirror of
https://github.com/ivuorinen/ivuorinen.git
synced 2026-03-18 18:03:01 +00:00
* chore(workflow): tweaks & moved .jscpd to root * chore(config): add .checkov.yaml * feat(lint): add @ivuorinen/base-configs, fix lints * chore(lint): fix lint errors * chore(lint): increase md max_line_length to 1000 * chore(workflows): run reviewdog on pull_request * feat(config): add actrc for nektosact.com * feat(lint): textlint configuration * chore(lint): disable json and natural language
46 lines
889 B
INI
46 lines
889 B
INI
# editorconfig.org
|
|
root = true
|
|
|
|
[*]
|
|
charset = utf-8
|
|
end_of_line = lf
|
|
indent_size = 2
|
|
indent_style = space
|
|
insert_final_newline = true
|
|
max_line_length = 160
|
|
tab_width = 2
|
|
trim_trailing_whitespace = true
|
|
|
|
[*.css]
|
|
indent_size = 4
|
|
tab_width = 4
|
|
|
|
[{*.sass,*.scss}]
|
|
tab_width = 4
|
|
|
|
[{*.ant,*.fxml,*.jhm,*.jnlp,*.jrxml,*.rng,*.tld,*.wsdl,*.xml,*.xsd,*.xsl,*.xslt,*.xul,phpunit.xml.dist}]
|
|
indent_size = 4
|
|
tab_width = 4
|
|
|
|
[{*.ats,*.cts,*.mts,*.ts}]
|
|
indent_size = 4
|
|
tab_width = 4
|
|
|
|
[{*.ctp,*.hphp,*.inc,*.module,*.php,*.php4,*.php5,*.phtml,application,branch-usage-checker}]
|
|
indent_size = 4
|
|
max_line_length = 110
|
|
tab_width = 4
|
|
|
|
[{*.har,*.jsb2,*.jsb3,*.json,.babelrc,.eslintrc,.prettierrc,.stylelintrc,bowerrc,composer.lock,jest.config}]
|
|
indent_size = 2
|
|
tab_width = 2
|
|
|
|
[{*.mk,GNUmakefile,makefile}]
|
|
tab_width = 4
|
|
|
|
[{*.tf,*.tfvars}]
|
|
tab_width = 4
|
|
|
|
[{*.md,.github/workflows/*.yml}]
|
|
max_line_length = 1000
|