Skip to content

Commit

Permalink
chore(get): improve error message when comparing shasums (#1213)
Browse files Browse the repository at this point in the history
* Apply eslint rules to codebase

Refs: #1209
  • Loading branch information
ayushmanchhabra authored Aug 24, 2024
1 parent 20b7e81 commit b37068f
Show file tree
Hide file tree
Showing 25 changed files with 680 additions and 1,277 deletions.
36 changes: 18 additions & 18 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
import js from "@eslint/js";
import jsdoc from 'eslint-plugin-jsdoc';
import globals from "globals";

import stylistic from "@stylistic/eslint-plugin-js";
import jsdoc from "eslint-plugin-jsdoc";
import markdownPlugin from "eslint-plugin-markdown";

export default {
languageOptions: {
parserOptions: {
ecmaVersion: "latest",
sourceType: "module"
},
},
plugins: {
"@stylistic/js": stylistic.configs["all-flat"],
"plugin:markdown/recommended": markdownPlugin.configs.recommended,
"jsdoc": jsdoc.configs.recommended,
export default [
{
languageOptions:
{
globals: globals.node
}
},
rules: {
"jsdoc/require-file-overview": "off"
js.configs.recommended,
jsdoc.configs['flat/recommended'],
{
rules: {
"semi": ["error", "always"],
"quotes": ["error", "single"],
}
}
}

];
Loading

0 comments on commit b37068f

Please sign in to comment.