mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-19 13:01:19 +00:00

- add basic rollup config to bundle minified and browser compatible js - use babel to transpile typescript files to js - add static code checkers: eslint and stylelint - update package.json scripts - update DEPENDENCIES.md file to include rollup and popper - set html in rss feed description fields - update Podcast and Episode entities to add description_html attribute generated by parsing markdown to html using parsedown #9
19 lines
310 B
JSON
19 lines
310 B
JSON
{
|
|
"extends": "stylelint-config-recommended",
|
|
"rules": {
|
|
"at-rule-no-unknown": [
|
|
true,
|
|
{
|
|
"ignoreAtRules": [
|
|
"tailwind",
|
|
"apply",
|
|
"responsive",
|
|
"variants",
|
|
"screen"
|
|
]
|
|
}
|
|
],
|
|
"no-descending-specificity": null
|
|
}
|
|
}
|