chore: disable eslint on camelcase rule

This commit is contained in:
unix
2020-03-30 03:58:25 +08:00
parent c8a8250830
commit a8e7252769

View File

@@ -4,6 +4,7 @@ export type ColorEnum = {
[key in keyof ZeitUIThemesPalette]?: string
}
/* eslint-disable @typescript-eslint/camelcase */
const normal: ColorEnum = {
background: 'Background',
accents_1: 'Accent 1',
@@ -16,6 +17,7 @@ const normal: ColorEnum = {
accents_8: 'Accent 8',
foreground: 'Foreground',
}
/* eslint-enable camelcase */
const error: ColorEnum = {
errorLight: 'Light',