add config files from old repo
This commit is contained in:
parent
9a12d1882f
commit
438fdbe22d
6 changed files with 51 additions and 0 deletions
7
.gitignore
vendored
7
.gitignore
vendored
|
@ -1 +1,8 @@
|
|||
# Assorted junk dirs
|
||||
cgi-bin/
|
||||
.well-known/
|
||||
node_modules/
|
||||
public/
|
||||
public_dev/
|
||||
.cache/
|
||||
resources/
|
||||
|
|
5
.markdownlintrc
Normal file
5
.markdownlintrc
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"no-inline-html": false,
|
||||
"first-line-h1": false,
|
||||
"extends": "markdownlint/style/prettier"
|
||||
}
|
3
.prettierignore
Normal file
3
.prettierignore
Normal file
|
@ -0,0 +1,3 @@
|
|||
node_modules/
|
||||
layouts/
|
||||
*
|
12
.prettierrc
Normal file
12
.prettierrc
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"proseWrap": "always",
|
||||
"overrides": [
|
||||
{
|
||||
"files": "*.html",
|
||||
"options": {
|
||||
"printWidth": 140,
|
||||
"singleAttributePerLine": true
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
17
.stylelintrc
Normal file
17
.stylelintrc
Normal file
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"plugins": [
|
||||
"stylelint-scss",
|
||||
"stylelint-selector-bem-pattern"
|
||||
],
|
||||
"extends": [
|
||||
"stylelint-prettier/recommended",
|
||||
"stylelint-config-standard-scss"
|
||||
],
|
||||
"rules": {
|
||||
"max-line-length": [ 80 ],
|
||||
"plugin/selector-bem-pattern": {
|
||||
"preset": "bem"
|
||||
},
|
||||
"selector-class-pattern": null
|
||||
}
|
||||
}
|
7
eslint.config.mjs
Normal file
7
eslint.config.mjs
Normal file
|
@ -0,0 +1,7 @@
|
|||
import pluginJs from "@eslint/js";
|
||||
import globals from "globals";
|
||||
|
||||
export default [
|
||||
{languageOptions: { globals: globals.browser }},
|
||||
pluginJs.configs.recommended,
|
||||
];
|
Loading…
Reference in a new issue