INSERT GRAPHIC HERE (include hyperlink in image)
Subtitle or Short Description Goes Here
/* | |
##Device = Desktops | |
##Screen = 1281px to higher resolution desktops | |
*/ | |
@media (min-width: 1281px) { | |
//CSS | |
/* eslint-disable flowtype/require-valid-file-annotation, no-console, import/extensions */ | |
import nodeResolve from 'rollup-plugin-node-resolve'; | |
import replace from 'rollup-plugin-replace'; | |
import commonjs from 'rollup-plugin-commonjs'; | |
import babel from 'rollup-plugin-babel'; | |
import json from 'rollup-plugin-json'; | |
import { terser } from 'rollup-plugin-terser'; | |
import sourceMaps from 'rollup-plugin-sourcemaps'; | |
import pkg from './package.json'; |
Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.