Skip to content
This repository was archived by the owner on Jan 13, 2023. It is now read-only.

Latest commit

 

History

History
23 lines (11 loc) · 307 Bytes

externalize-js-css.md

File metadata and controls

23 lines (11 loc) · 307 Bytes

Externalize the import of .js and .css files (s32)

Rule Details

This rule aims to...

Examples of incorrect code for this rule:

import {faireTirage} from './tirage.js'

Examples of correct code for this rule:

import {faireTirage} from 'http://myhost/js/tirage.js'