An options, perhaps ignore_arrays, that would keep the following format:
let mut board: [[char; 3]; 3] = [
['O', 'O', 'O'],
['O', 'O', 'O'],
['O', 'O', 'O']
];
Instead of inlining everything like it does now:
let mut board: [[char; 3]; 3] = [['O', 'O', 'O'], ['O', 'O', 'O'], ['O', 'O', 'O']];
An options, perhaps
ignore_arrays, that would keep the following format:Instead of inlining everything like it does now:
let mut board: [[char; 3]; 3] = [['O', 'O', 'O'], ['O', 'O', 'O'], ['O', 'O', 'O']];