* feat: hopp ui initialized * feat: button components added * feat: windi css integration * chore: package removed from hopp ui * feat: storybook added * feat: move all smart components hoppscotch-ui * fix: import issue from components/smart * fix: env input component import * feat: add hoppui to windicss config * fix: remove storybook * feat: move components from hoppscotch-ui * feat: storybook added * feat: storybook progress * feat: themeing storybook * feat: add stories * chore: package updated * chore: stories added * feat: stories added * feat: stories added * feat: icons resolved * feat: i18n composable resolved * feat: histoire added * chore: resolved prettier issue * feat: radio story added * feat: story added for all components * feat: new components added to stories * fix: resolved issues * feat: readme.md added * feat: context/provider added * chore: removed app component registry * chore: remove importing of all components in hopp-ui to allow code splitting * chore: fix vite config errors * chore: jsdoc added * chore: any replaced with smart-item * chore: i18n added to ui components * chore: clean up - removed a duplicate button --------- Co-authored-by: Andrew Bastin <andrewbastin.k@gmail.com> Co-authored-by: Liyas Thomas <liyascthomas@gmail.com>
48 lines
1.4 KiB
JavaScript
48 lines
1.4 KiB
JavaScript
/* eslint-env node */
|
|
require("@rushstack/eslint-patch/modern-module-resolution")
|
|
module.exports = {
|
|
root: true,
|
|
env: {
|
|
browser: true,
|
|
node: true,
|
|
jest: true,
|
|
},
|
|
parserOptions: {
|
|
sourceType: "module",
|
|
requireConfigFile: false,
|
|
},
|
|
extends: [
|
|
"@vue/typescript/recommended",
|
|
"plugin:vue/vue3-recommended",
|
|
"plugin:prettier/recommended",
|
|
"plugin:storybook/recommended",
|
|
],
|
|
ignorePatterns: [
|
|
"static/**/*",
|
|
"./helpers/backend/graphql.ts",
|
|
"**/*.d.ts",
|
|
"types/**/*",
|
|
],
|
|
plugins: ["vue", "prettier"],
|
|
// add your custom rules here
|
|
rules: {
|
|
semi: [2, "never"],
|
|
"import/named": "off",
|
|
// because, named import issue with typescript see: https://github.com/typescript-eslint/typescript-eslint/issues/154
|
|
"no-console": "off",
|
|
"no-debugger": process.env.HOPP_LINT_FOR_PROD === "true" ? "error" : "warn",
|
|
"prettier/prettier":
|
|
process.env.HOPP_LINT_FOR_PROD === "true" ? "error" : "warn",
|
|
"vue/multi-word-component-names": "off",
|
|
"vue/no-side-effects-in-computed-properties": "off",
|
|
"import/no-named-as-default": "off",
|
|
"import/no-named-as-default-member": "off",
|
|
"@typescript-eslint/no-unused-vars":
|
|
process.env.HOPP_LINT_FOR_PROD === "true" ? "error" : "warn",
|
|
"@typescript-eslint/no-non-null-assertion": "off",
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
"import/default": "off",
|
|
"no-undef": "off",
|
|
},
|
|
}
|