Skip to content
Draft
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
5 changes: 5 additions & 0 deletions .storybook/main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export default {
framework: '@storybook/html-vite',
stories: ['../components/**/*.stories.js'],
staticDirs: ['../static'],
};
2 changes: 2 additions & 0 deletions .storybook/preview.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import "../static/protocol/css/protocol.css";
import "../static/protocol/css/protocol-components.css";
5 changes: 5 additions & 0 deletions components/button/button.stories.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export default { title: 'Components/Button' };

export const Default = {
Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

would want something that has an HTML panel like current docs

Image

render: () => `<button class="mzp-c-button mzp-t-product" type="button">Sign up</button>`,
};
99 changes: 52 additions & 47 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,137 +1,142 @@
const js = require('@eslint/js');
const globals = require('globals');
const js = require("@eslint/js");

Check failure on line 1 in eslint.config.js

View workflow job for this annotation

GitHub Actions / build

Strings must use singlequote
const globals = require("globals");

Check failure on line 2 in eslint.config.js

View workflow job for this annotation

GitHub Actions / build

Strings must use singlequote

const rules = {
// Require `let` or `const` instead of `var`
// https://eslint.org/docs/rules/no-var
'no-var': 'error',
"no-var": "error",

Check failure on line 7 in eslint.config.js

View workflow job for this annotation

GitHub Actions / build

Strings must use singlequote

Check failure on line 7 in eslint.config.js

View workflow job for this annotation

GitHub Actions / build

Strings must use singlequote

// Require `const` declarations for variables that are never reassigned after declared
// https://eslint.org/docs/rules/prefer-const
'prefer-const': 'error',
"prefer-const": "error",

Check failure on line 11 in eslint.config.js

View workflow job for this annotation

GitHub Actions / build

Strings must use singlequote

Check failure on line 11 in eslint.config.js

View workflow job for this annotation

GitHub Actions / build

Strings must use singlequote

// This option sets a specific tab width for your code
// https://eslint.org/docs/rules/indent
'indent': ['error', 4],
indent: ["error", 4],

Check failure on line 15 in eslint.config.js

View workflow job for this annotation

GitHub Actions / build

Strings must use singlequote

// Disallow mixed 'LF' and 'CRLF' as linebreaks
// https://eslint.org/docs/rules/linebreak-style
'linebreak-style': ['error', 'unix'],
"linebreak-style": ["error", "unix"],

Check failure on line 19 in eslint.config.js

View workflow job for this annotation

GitHub Actions / build

Strings must use singlequote

Check failure on line 19 in eslint.config.js

View workflow job for this annotation

GitHub Actions / build

Strings must use singlequote

Check failure on line 19 in eslint.config.js

View workflow job for this annotation

GitHub Actions / build

Strings must use singlequote

// Specify whether double or single quotes should be used
'quotes': ['error', 'single'],
quotes: ["error", "single"],

// Require or disallow use of semicolons instead of ASI
'semi': ['error', 'always'],
semi: ["error", "always"],

// Enforce location of semicolons
// https://eslint.org/docs/rules/semi-style
'semi-style': ['error', 'last'],
"semi-style": ["error", "last"],

// Require camel case names
// https://eslint.org/docs/rules/camelcase
'camelcase': ['error', { 'properties': 'always' }],
camelcase: ["error", { properties: "always" }],

// Use type-safe equality operators
// https://eslint.org/docs/rules/eqeqeq
'eqeqeq': ['error', 'always'],
eqeqeq: ["error", "always"],

// Require newlines around variable declarations
// https://eslint.org/docs/rules/one-var-declaration-per-line
'one-var-declaration-per-line': ['error', 'always'],
"one-var-declaration-per-line": ["error", "always"],

// Require constructor names to begin with a capital letter
// https://eslint.org/docs/rules/new-cap
'new-cap': 'error',
"new-cap": "error",

// Disallow Use of alert, confirm, prompt
// https://eslint.org/docs/rules/no-alert
'no-alert': 'error',
"no-alert": "error",

// Disallow eval()
// https://eslint.org/docs/rules/no-eval
'no-eval': 'error',
"no-eval": "error",

// Disallow empty functions
// https://eslint.org/docs/rules/no-empty-function
'no-empty-function': 'error',
"no-empty-function": "error",

// Require radix parameter
// https://eslint.org/docs/rules/radix
'radix': 'error',
radix: "error",

// Disallow the use of `console`
// https://eslint.org/docs/rules/no-console
'no-console': 'error'
"no-console": "error",
};

const testingGlobals = {
sinon: true
sinon: true,
};

module.exports = [
js.configs.recommended,
{
ignores: ['dist/**/*.js', 'package/**/*.js', 'static/**/*.js', 'theme/static/**/*.js', 'tests/dist/**/*.js'],
ignores: [
"dist/**/*.js",
"package/**/*.js",
"static/**/*.js",
"theme/static/**/*.js",
"tests/dist/**/*.js",
],
},
{
files: ['assets/js/**/*.js'],
files: ["assets/js/**/*.js"],
languageOptions: {
ecmaVersion: 2017,
globals: {
Mozilla: true,
...globals.browser,
...globals.commonjs
}
...globals.commonjs,
},
},
rules: rules
rules: rules,
},
{
files: ['theme/**/*.js'],
files: ["theme/**/*.js"],
languageOptions: {
ecmaVersion: 2017,
globals: {
Mozilla: true,
...globals.browser,
...globals.commonjs,
...globals.node
}
...globals.node,
},
},
rules: rules
rules: rules,
},
{
files: ['tests/**/*.js'],
files: ["tests/**/*.js"],
languageOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
ecmaVersion: "latest",
sourceType: "module",
globals: {
Mozilla: true,
...globals.browser,
...globals.jasmine,
...globals.commonjs,
...testingGlobals
}
...testingGlobals,
},
},
rules: rules
rules: rules,
},
{
files: [
'eslint.config.js',
'fractal.config.js',
'webpack.docs.build.config.js',
'webpack.docs.static.config.js',
'webpack.entrypoints.js',
'webpack.package.build.config.js',
'webpack.package.static.config.js',
'webpack.test.config.js'
"eslint.config.js",
"webpack.docs.build.config.js",
"webpack.docs.static.config.js",
"webpack.entrypoints.js",
"webpack.package.build.config.js",
"webpack.package.static.config.js",
"webpack.test.config.js",
],
languageOptions: {
ecmaVersion: 'latest',
ecmaVersion: "latest",
globals: {
...globals.node,
...globals.commonjs
}
...globals.commonjs,
},
},
rules: rules
}
rules: rules,
},
];
67 changes: 0 additions & 67 deletions fractal.config.js

This file was deleted.

Loading
Loading