mirror of https://github.com/Lissy93/dashy.git
🔀 Merge pull request #140 from Lissy93/FIX/eslint-error
Yay, all lint checks pass, and the build is fixed 🥳
This commit is contained in:
commit
e27edc5b84
|
@ -74,6 +74,7 @@
|
|||
],
|
||||
"rules": {
|
||||
"import/no-unresolved": "off",
|
||||
"import/extensions": "off",
|
||||
"arrow-parens": 0,
|
||||
"no-else-return": 0
|
||||
},
|
||||
|
|
|
@ -11,14 +11,15 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import CustomThemeMaker from '@/components/Settings/CustomThemeMaker';
|
||||
import { getTheme } from '@/utils/ConfigHelpers';
|
||||
|
||||
import { PrismEditor } from 'vue-prism-editor';
|
||||
import { highlight, languages } from 'prismjs/components/prism-core';
|
||||
import 'prismjs/components/prism-css';
|
||||
import 'prismjs/themes/prism-funky.css';
|
||||
import 'vue-prism-editor/dist/prismeditor.min.css';
|
||||
|
||||
import CustomThemeMaker from '@/components/Settings/CustomThemeMaker';
|
||||
import { getTheme } from '@/utils/ConfigHelpers';
|
||||
import { localStorageKeys } from '@/utils/defaults';
|
||||
|
||||
export default {
|
||||
|
|
|
@ -55,12 +55,12 @@
|
|||
|
||||
<script>
|
||||
|
||||
import axios from 'axios';
|
||||
import VJsoneditor from 'v-jsoneditor';
|
||||
import { localStorageKeys } from '@/utils/defaults';
|
||||
import configSchema from '@/utils/ConfigSchema.json';
|
||||
import JsonToYaml from '@/utils/JsonToYaml';
|
||||
import { isUserAdmin } from '@/utils/Auth';
|
||||
import axios from 'axios';
|
||||
|
||||
export default {
|
||||
name: 'JsonEditor',
|
||||
|
|
Loading…
Reference in New Issue