* Renamed js vars/css names * Renamed display_ads to billboards in js functions, variables, components
32 lines
734 B
JavaScript
32 lines
734 B
JavaScript
/* eslint-env node */
|
|
|
|
module.exports = {
|
|
extends: ['eslint:recommended', 'prettier'],
|
|
parserOptions: {
|
|
ecmaVersion: 2018,
|
|
},
|
|
env: {
|
|
browser: true,
|
|
},
|
|
plugins: ['ignore-erb'],
|
|
rules: {
|
|
'no-unused-vars': 'off',
|
|
'vars-on-top': 'off',
|
|
},
|
|
globals: {
|
|
getCsrfToken: false,
|
|
sendFetch: false,
|
|
preventDefaultAction: false,
|
|
userData: false,
|
|
ga: false, // Google Analytics
|
|
gtag: false, // Google Analytics 4
|
|
handleOptimisticButtRender: false,
|
|
handleFollowButtPress: false,
|
|
browserStoreCache: false,
|
|
initializeBaseUserData: false,
|
|
initializeBillboardVisibility: false,
|
|
initializeReadingListIcons: false,
|
|
ActiveXObject: false,
|
|
AndroidBridge: false,
|
|
},
|
|
};
|