Skip to content

Commit fb02b22

Browse files
committed
fix: update eslint config path + fix lint issues
1 parent 650b80d commit fb02b22

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.eslintrc.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"root": true,
3-
"extends": "./packages/configs/eslint-config"
3+
"extends": "./packages/configs/eslint-config/index.js"
44
}

packages/build-tools/utils/log.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,8 @@ function intro() {
109109
const i = chalk.hex('#545DA6'); // indigo, light
110110
const y = chalk.hex('#ffcc4d'); // yellow, base
111111
const o = chalk.hex('#E84B17');
112-
const t = chalk.hex('#009999')
113-
const w = chalk.hex('#FFFFFF')
112+
const t = chalk.hex('#009999');
113+
const w = chalk.hex('#FFFFFF');
114114

115115
const CLI_TITLE = chalk.bold.underline('Bolt Design System CLI');
116116
const CLI_USAGE = 'Usage: `bolt <command> [options ...]`';

packages/components/bolt-ol/__tests__/ol.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
import { render, renderString, stopServer } from '../../../testing/testing-helpers';
1+
import {
2+
render,
3+
renderString,
4+
stopServer,
5+
} from '../../../testing/testing-helpers';
26

37
describe('<bolt-ol> Component', () => {
48
afterAll(async () => {

0 commit comments

Comments
 (0)