Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore/issue 43 linting for markdown and JSON #102

Merged
merged 9 commits into from
Oct 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,6 @@ export default class Card extends HTMLElement {

template.innerHTML = `
<div class="card">
<style>
${styles}
</style>
<h3>${title}</h3>
<img src="${thumbnail}" alt="${title}" loading="lazy" width="100%">
<button>View Item Details</button>
Expand Down
260 changes: 32 additions & 228 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
import eslintConfigPrettier from "eslint-config-prettier";
import babelParser from "@babel/eslint-parser";
import markdown from "@eslint/markdown";
import json from "@eslint/json";
import js from "@eslint/js";
import globals from "globals";

export default [
{
Expand All @@ -25,238 +29,38 @@ export default [
},
},
globals: {
browser: true,
node: true,
...globals.browser,
...globals.mocha,
...globals.chai,
...globals.node,
},
},
rules: {
"comma-dangle": [2, "never"],
"no-cond-assign": 2,
"no-console": 0,
"no-constant-condition": 2,
"no-control-regex": 0,
"no-debugger": 0,
"no-dupe-args": 0,
"no-dupe-keys": 0,
"no-duplicate-case": 2,
"no-empty-character-class": 0,
"no-empty": 2,
"no-ex-assign": 2,
"no-extra-boolean-cast": 2,
"no-extra-parens": [
2,
"all",
{
conditionalAssign: false,
returnAssign: false,
nestedBinaryExpressions: false,
},
],
"no-extra-semi": 2,
"no-func-assign": 2,
"no-inner-declarations": 2,
"no-invalid-regexp": 0,
"no-irregular-whitespace": 2,
"no-negated-in-lhs": 2,
"no-obj-calls": 0,
"no-regex-spaces": 0,
"no-sparse-arrays": 2,
"no-unreachable": 2,
"use-isnan": 2,
"valid-jsdoc": 0,
"valid-typeof": 0,
"no-unexpected-multiline": 0,
"accessor-pairs": 2,
"block-scoped-var": 2,
complexity: 2,
"consistent-return": 0,
curly: 2,
"default-case": 2,
"dot-notation": 2,
"dot-location": 0,
eqeqeq: [2, "allow-null"],
"guard-for-in": 0,
"no-alert": 0,
"no-caller": 0,
"no-div-regex": 0,
"no-else-return": 0,
"no-empty-label": 0,
"no-eq-null": 0,
"no-eval": 2,
"no-extend-native": 0,
"no-extra-bind": 2,
"no-fallthrough": 2,
"no-floating-decimal": 2,
"no-implicit-coercion": [
2,
{
number: true,
string: true,
boolean: false,
},
],
"no-implied-eval": 2,
"no-invalid-this": 0,
"no-iterator": 2,
"no-labels": 0,
"no-lone-blocks": 0,
"no-loop-func": 2,
"no-multi-spaces": 2,
"no-multi-str": 0,
"no-native-reassign": 0,
"no-new-func": 0,
"no-new-wrappers": 2,
"no-new": 2,
"no-octal-escape": 0,
"no-octal": 0,
"no-param-reassign": 0,
"no-process-env": 0,
"no-proto": 0,
"no-redeclare": 2,
"no-return-assign": 0,
"no-script-url": 0,
"no-self-compare": 0,
"no-sequences": 0,
"no-throw-literal": 2,
"no-unused-expressions": 0,
"no-useless-call": 0,
"no-void": 0,
"no-warning-comments": [
1,
{
terms: ["todo", " fixme", " TODO", " FIXME"],
location: "anywhere",
},
],
"no-with": 0,
radix: 2,
"vars-on-top": 2,
"wrap-iife": [2, "inside"],
yoda: 0,
strict: [2, "global"],
"init-declarations": 0,
"no-catch-shadow": 2,
"no-delete-var": 2,
"no-label-var": 0,
"no-shadow-restricted-names": 0,
"no-shadow": 0,
"no-undef-init": 0,
"no-undef": 0,
"no-undefined": 0,
"no-unused-vars": 2,
"no-use-before-define": 0,
"callback-return": 0,
"handle-callback-err": 2,
"no-mixed-requires": 0,
"no-new-require": 0,
"no-path-concat": 2,
"no-process-exit": 2,
"no-restricted-modules": 0,
"no-sync": 0,
"array-bracket-spacing": 2,
"brace-style": [
2,
"1tbs",
{
allowSingleLine: true,
},
],
camelcase: 2,
"comma-spacing": 2,
"comma-style": [2, "last"],
"computed-property-spacing": 0,
"consistent-this": [0, "self", "that"],
"eol-last": [2, "never"],
"func-names": 0,
"func-style": 0,
"id-length": 0,
indent: [
2,
2,
{
VariableDeclarator: 1,
SwitchCase: 1,
ignoredNodes: ["TemplateLiteral"],
},
],
"key-spacing": [
2,
{
beforeColon: false,
afterColon: true,
},
],
"lines-around-comment": 0,
"linebreak-style": 0,
"max-nested-callbacks": [2, { maximum: 8 }],
"new-cap": 2,
"new-parens": 2,
"no-array-constructor": 2,
"no-continue": 0,
"no-inline-comments": 0,
"no-lonely-if": 0,
"no-mixed-spaces-and-tabs": [2, "smart-tabs"],
"no-multiple-empty-lines": [2, { max: 1 }],
"no-nested-ternary": 0,
"no-new-object": 2,
"no-spaced-func": 2,
"no-ternary": 0,
"no-trailing-spaces": 2,
"no-underscore-dangle": [2, { allowAfterThis: true }],
"no-unneeded-ternary": 2,
"object-curly-spacing": [2, "always", {}],
"one-var": 0,
"operator-assignment": 0,
"operator-linebreak": 0,
"padded-blocks": [2, { switches: "always" }],
"quote-props": [2, "consistent"],
quotes: [2, "single", "avoid-escape"],
"id-match": 0,
"semi-spacing": [2, { after: true }],
semi: [2, "always"],
"sort-vars": 0,
"keyword-spacing": 2,
"space-before-blocks": 2,
"space-before-function-paren": 0,
"space-in-parens": 2,
"space-infix-ops": 2,
"space-return-throw-case": 0,
"space-unary-ops": 0,
"spaced-comment": [
2,
"always",
{
line: {
markers: ["/"],
exceptions: ["-", "+"],
},
block: {
markers: ["!"],
exceptions: ["*"],
},
},
],
"wrap-regex": 2,
"arrow-parens": 0,
"arrow-spacing": 0,
"constructor-super": 0,
"generator-star-spacing": 0,
"no-class-assign": 0,
"no-const-assign": 0,
"no-this-before-super": 0,
"no-var": 0,
"object-shorthand": 0,
"prefer-const": 0,
"prefer-spread": 0,
"prefer-reflect": 0,
"require-yield": 0,
"max-depth": [2, 4],
"max-len": [2, 200, 1, { ignorePattern: "true" }],
"max-params": 0,
"max-statements": 0,
"no-bitwise": [2, { allow: ["~"] }],
"no-plusplus": 2,
...js.configs.recommended.rules,
// turn this off for Prettier
"no-irregular-whitespace": "off",
},
},
{
// https://github.com/eslint/json#recommended-configuration
files: ["**/*.json"],
ignores: ["package-lock.json"],
language: "json/json",
rules: json.configs.recommended.rules,
plugins: {
json,
},
},
{
// note: we can only lint code fences, _or_ the markdown files themselves
// so for now we will just lint the code fences
// https://github.com/eslint/markdown/blob/main/docs/processors/markdown.md#using-the-markdown-processor
files: ["**/*.md"],
processor: "markdown/markdown",
plugins: {
markdown,
},
language: "markdown/gfm",
},
eslintConfigPrettier,
];
Loading