Skip to content

Commit b2c5710

Browse files
committed
formattinglinking and cleanup
1 parent d3f80ae commit b2c5710

19 files changed

Lines changed: 1957 additions & 2320 deletions

.htmlhintrc

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"tagname-lowercase": true,
3+
"attr-lowercase": true,
4+
"attr-value-double-quotes": true,
5+
"attr-value-not-empty": false,
6+
"attr-no-duplication": true,
7+
"doctype-first": true,
8+
"tag-pair": true,
9+
"tag-self-close": false,
10+
"spec-char-escape": true,
11+
"id-unique": true,
12+
"src-not-empty": true,
13+
"title-require": true,
14+
"head-script-disabled": false,
15+
"doctype-html5": true,
16+
"id-class-value": "dash",
17+
"style-disabled": false,
18+
"inline-style-disabled": false,
19+
"inline-script-disabled": false,
20+
"space-tab-mixed-disabled": "space",
21+
"id-class-ad-disabled": false,
22+
"href-abs-or-rel": false,
23+
"attr-unsafe-chars": true,
24+
"alt-require": true
25+
}

.markdownlint-cli2.jsonc

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"config": {
3+
"default": true,
4+
// Line length - disabled, let Prettier handle wrapping
5+
"MD013": false,
6+
// Allow inline HTML (common in technical docs)
7+
"MD033": false,
8+
// Allow duplicate headings in different sections
9+
"MD024": { "siblings_only": true },
10+
// First line in file should be a top-level heading - relaxed
11+
"MD041": false,
12+
// Allow bare URLs
13+
"MD034": false,
14+
// Ordered list item prefix - allow "1." style for all
15+
"MD029": { "style": "one" }
16+
},
17+
"ignores": ["node_modules", "dist", "CHANGELOG.md"],
18+
"globs": ["**/*.md"]
19+
}

.prettierignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
dist
3+
package-lock.json

.prettierrc.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"semi": true,
3+
"singleQuote": true,
4+
"trailingComma": "es5",
5+
"printWidth": 100,
6+
"tabWidth": 2,
7+
"useTabs": false,
8+
"endOfLine": "lf"
9+
}

.stylelintrc.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"extends": ["stylelint-config-standard"],
3+
"plugins": ["stylelint-prettier"],
4+
"rules": {
5+
"prettier/prettier": true,
6+
"no-descending-specificity": null,
7+
"selector-class-pattern": null,
8+
"custom-property-pattern": null,
9+
"keyframes-name-pattern": null,
10+
"alpha-value-notation": "number",
11+
"color-function-notation": "legacy",
12+
"declaration-block-no-redundant-longhand-properties": null
13+
},
14+
"ignoreFiles": ["node_modules/**", "dist/**"]
15+
}

eslint.config.js

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
import js from '@eslint/js';
2+
import globals from 'globals';
3+
4+
export default [
5+
js.configs.recommended,
6+
{
7+
files: ['**/*.js'],
8+
languageOptions: {
9+
ecmaVersion: 'latest',
10+
sourceType: 'module',
11+
globals: {
12+
...globals.browser,
13+
...globals.node,
14+
},
15+
},
16+
rules: {
17+
// Add or override rules here as needed
18+
},
19+
},
20+
{
21+
// Files that run only in Node (tests, scripts, etc.)
22+
files: ['test/**/*.js', '**/*.config.js'],
23+
languageOptions: {
24+
globals: {
25+
...globals.node,
26+
},
27+
},
28+
},
29+
{
30+
ignores: ['node_modules/**', 'dist/**'],
31+
},
32+
];

kids_dnd/character_creator/app.js

Lines changed: 0 additions & 161 deletions
This file was deleted.

kids_dnd/character_creator/data.js

Lines changed: 0 additions & 61 deletions
This file was deleted.

0 commit comments

Comments
 (0)