mirror of
https://github.com/status-im/consul.git
synced 2025-01-10 05:45:46 +00:00
6589cbbd0d
* ui: Add the most basic workspace root in /ui * We already have a LICENSE file in the repository root * Change directory path in build scripts ui-v2 -> ui * Make yarn install flags configurable from elsewhere * Minimal workspace root makefile * Call the new docker specific target * Update yarn in the docker build image * Reconfigure the netlify target and move to the higher makefile * Move ui-v2 -> ui/packages/consul-ui * Change repo root to refleect new folder structure * Temporarily don't hoist consul-api-double * Fixup CI configuration * Fixup lint errors * Fixup Netlify target
35 lines
784 B
JavaScript
35 lines
784 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
extends: 'octane',
|
|
rules: {
|
|
'no-partial': false,
|
|
|
|
'no-invalid-interactive': false,
|
|
'simple-unless': false,
|
|
|
|
'self-closing-void-elements': false,
|
|
'no-unnecessary-concat': false,
|
|
'no-quoteless-attributes': false,
|
|
'no-nested-interactive': false,
|
|
|
|
'block-indentation': false,
|
|
'quotes': false,
|
|
|
|
'no-inline-styles': false,
|
|
'no-triple-curlies': false,
|
|
'no-unused-block-params': false,
|
|
'style-concatenation': false,
|
|
'link-rel-noopener': false,
|
|
|
|
'no-implicit-this': false,
|
|
'no-curly-component-invocation': false,
|
|
'no-action': false,
|
|
'no-negated-condition': false,
|
|
'no-invalid-role': false,
|
|
|
|
'no-unnecessary-component-helper': false,
|
|
'link-href-attributes': false
|
|
},
|
|
};
|