Using a user style sheet extension, this CSS should give you enough targetting to put the README above the files, putting the important information in the right place.
I use uptight, by the late Chloe Weil, you can use what you want.
| { | |
| "extends": "eslint:recommended", | |
| "env": { | |
| "node": true, | |
| "es6": true | |
| }, | |
| "rules": { | |
| "no-console": 0 | |
| } | |
| } | 
Using a user style sheet extension, this CSS should give you enough targetting to put the README above the files, putting the important information in the right place.
I use uptight, by the late Chloe Weil, you can use what you want.
| require('@remy/envy'); // similar to dotenv, but supports .env.production, .env.local, etc | |
| const webpack = require('webpack'); | |
| module.exports = { | |
| webpack: config => { | |
| config.plugins.push( | |
| new webpack.EnvironmentPlugin( | |
| ['SHOW_SPEAKER'] // array of indiviudal ENV values I want exposed | |
| ) | |
| ); | 
| { | |
| "script": "http.js", | |
| "ext": "json", | |
| "ignore": [".git", "node_modules/**/node_modules"], | |
| "watch": "watchPath" | |
| } | 
| // via @github.com/electricg | |
| // remove next.js custom scripts ala https://github.com/zeit/next.js/issues/3155#issuecomment-338708632 | |
| import React from 'react'; | |
| import { Head } from 'next/document'; | |
| export default class MyHead extends Head { | |
| render() { | |
| const { head, styles } = this.context._documentProps; | |
| return ( | 
| // pages/index.js | |
| const Page = props => <pre>{JSON.stringify(props, '', 2)}</pre>; | |
| export default Page; | 
| /* 'eff you, I will select what I want. */ | |
| * { | |
| user-select: initial !important; | |
| } | |
| .sg-tabs-panel { | |
| min-height: 20em !important; | |
| } | |
| .refined-github #new_comment_field { | 
| module.exports = { | |
| env: { browser: true }, | |
| extends: ['eslint:recommended', 'plugin:compat/recommended'], | |
| }; | 
| module.exports = { | |
| env: { browser: true, es6: true, commonjs: true }, | |
| extends: ['eslint:recommended', 'plugin:compat/recommended'], | |
| parser: 'babel-eslint', | |
| parserOptions: { | |
| ecmaFeatures: { experimentalObjectRestSpread: true, jsx: true }, | |
| sourceType: 'module', | |
| }, | |
| plugins: ['react'], | |
| rules: { | 
| module.exports = { | |
| env: { browser: true, es6: true, commonjs: true }, | |
| extends: ['eslint:recommended', 'plugin:compat/recommended'], | |
| parser: 'babel-eslint', | |
| parserOptions: { | |
| ecmaFeatures: { experimentalObjectRestSpread: true, jsx: true }, | |
| sourceType: 'module', | |
| }, | |
| plugins: ['react'], | |
| rules: { |